home *** CD-ROM | disk | FTP | other *** search
/ Clickx 47 / Clickx 47.iso / assets / software / Miro_Installer.exe / xulrunner / chrome / toolkit.jar / content / mozapps / preferences / actionsshared.js next >
Encoding:
Text File  |  2005-03-10  |  659 b   |  29 lines

  1. //@line 37 "/c/mozilla/toolkit/mozapps/preferences/actionsshared.js"
  2.  
  3. const FILEACTION_SAVE_TO_DISK     = 1;
  4. const FILEACTION_OPEN_INTERNALLY  = 2;
  5. const FILEACTION_OPEN_DEFAULT     = 3;
  6. const FILEACTION_OPEN_CUSTOM      = 4;
  7. const FILEACTION_OPEN_PLUGIN      = 5;
  8. function FileAction ()
  9. {
  10. }
  11. FileAction.prototype = {
  12.   type        : "",
  13.   extension   : "",
  14.   hasExtension: true,
  15.   editable    : true,
  16.   smallIcon   : "",
  17.   bigIcon     : "",
  18.   typeName    : "",
  19.   action      : "",
  20.   mimeInfo    : null,
  21.   customHandler       : "",
  22.   handleMode          : false,
  23.   pluginAvailable     : false,
  24.   pluginEnabled       : false,
  25.   handledOnlyByPlugin : false
  26. };
  27.  
  28.  
  29.